home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000350_news@columbia.edu_Tue May 9 12:50:55 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00456
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 9 May 1995 08:51:05 -0400
  3. Received: by apakabar.cc.columbia.edu id AA12444
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 9 May 1995 08:51:04 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc,comp.unix.bsd.bsdi.misc
  8. Subject: Re: Kermit D/L through a hybrid Asynch-to-Telnet card
  9. Date: 9 May 1995 12:50:55 GMT
  10. Organization: Columbia University
  11. Lines: 34
  12. Message-Id: <3onoff$c4i@apakabar.cc.columbia.edu>
  13. References: <3omjv4$qjc@news.rain.org>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Xref: news.columbia.edu comp.protocols.kermit.misc:2716 comp.unix.bsd.bsdi.misc:287
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <3omjv4$qjc@news.rain.org>,
  19. Tom Towle <towle@ceo.sbceo.k12.ca.us> wrote:
  20. : Here's a weird one. We have a BSDI Pentium hooked up over Ethernet to a
  21. : card called a VLAN card by a company named Penril. Our dial-in users
  22. : come in over an asynchronous connect ports to multiplexers, (made by the
  23. : same company), and then are trunked over hi-speed synchronous data lines
  24. : to this half-serial, half-ethernet card, and then they get a Telnet
  25. : connection to our Unix box. For the dial-up connection, everthing seems
  26. : to work fine, however, Kermit appears to be the only method available
  27. : for binary file transfer.
  28. So what's the problem?
  29.  
  30. : Is there anyone that might suggest settings for our users .kermrc files?
  31. : SET PACKET LENGTH? SET LINE? Remember, Telnet on the host end, asynch on
  32. : the users end.
  33. Maybe you could be more specific about what you want the settings to
  34. accomplish.  If everybody is coming *in* to the BSDI system, then
  35. obviously you don't want a SET LINE command in your .kermrc file.
  36. And you can also make Kermit start up a lot faster by removing all of the
  37. local-mode-only items from it -- dialing and services directory setup, 
  38. etc.  This can be done without editing the file by including the -R
  39. (uppercase) (= "remote only") command-line option.  You can do this with
  40. an alias, such as:
  41.  
  42.   alias kermit="kermit -R"
  43.  
  44. As far as file transfer goes, you can increase the default packet and
  45. window sizes to the maximum levels that seem to be safe for your
  46. equipment.  Some trial and error will be necessary -- no single collection
  47. of settings applies to every situation.  If it did, we would use it!
  48.  
  49. - Frank